3737407b28294e08e3e5d9a54b7efa350a7377c1,modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/sql/DmlAstUtils.java,DmlAstUtils,findTablesInFrom,#GridSqlElement#IgnitePredicate#,540
Before Change
if (from instanceof GridSqlJoin) {
// Left and right.
if (findTablesInFrom(from.child(0), c))
return true;
if (findTablesInFrom(from.child(1), c))
After Change
if (from instanceof GridSqlJoin) {
// Left and right.
if (findTablesInFrom((GridSqlElement)from.child(0), c))
return true;
if (findTablesInFrom((GridSqlElement)from.child(1), c))